home *** CD-ROM | disk | FTP | other *** search
/ AOL File Library: 2,801 to 2,900 / aol-file-protocol-4400-2801-to-2900.zip / AOLDLs / C++ Files Library / 3D & Offscreen for MacApp 3 / 3D & Offscreen Sample.sea / 3D & Offscreen Sample / T3DTracker.h < prev    next >
Text File  |  1993-05-06  |  2KB  |  63 lines

  1. /*************************************************************************
  2.  
  3.         File: T3DTracker.h
  4.  
  5.         C O P Y R I G H T    N O T I C E
  6.  
  7.      Copyright ⌐ 1989, 1990, 1991, 1992 Siemens Gammasonics, Inc.
  8.         All Rights Reserved.
  9.         No portions of this source code or the resulting compiled
  10.         program may be used without express written consent and liscensing
  11.         by Siemens Gammasonics, Inc.
  12.  
  13.  
  14.         D E S C R I P T I O N
  15.  
  16.  
  17.         Classes Defined Here:
  18.  
  19.              Ñ
  20.  
  21.  
  22.         Change History
  23.  
  24.         Rev 1    Wed, Apr 14, 1993 @ 4:37 PM        Hanig
  25.             Creation
  26.  
  27.  *************************************************************************/
  28. /*************************************************************************/
  29. #ifndef __T3DTracker__
  30. #define __T3DTracker__
  31.  
  32. /*************************************************************************/
  33. /*                            Include Files                                 */
  34. /*************************************************************************/
  35. #ifndef        __UCOMMAND__
  36. #include    <UCommand.h>
  37. #endif
  38. #ifndef        __ T3DObjectView __
  39. #include    "T3DObjectView.h"
  40. #endif
  41.  
  42. /*************************************************************************/
  43. /*                                Constants                                     */
  44. /*************************************************************************/
  45.  
  46. /*************************************************************************/
  47. /*                           Class Declaration                             */
  48. /*************************************************************************/
  49.  
  50. class T3DTracker : public TTracker
  51. {
  52.     public:
  53.         T3DTracker(void);
  54.  
  55.         virtual pascal void I3DTracker(T3DObjectView* the3DView,
  56.                                              const VPoint& itsMouse);
  57.         
  58. };
  59.  
  60. /*************************************************************************/
  61. #endif
  62. /*************************************************************************/
  63.